home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Leser 19 / Amiga Plus Leser CD 19.iso / Tools / MorphOS / cvs-1.11.2 / source / amiga / ssh / crc.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-11-18  |  446 b   |  25 lines

  1. /*
  2.  * CRC generation
  3.  *
  4.  * $Id$
  5.  *
  6.  * :ts=4
  7.  */
  8.  
  9. #ifndef _CRC_H
  10. #define _CRC_H
  11.  
  12. /****************************************************************************/
  13.  
  14. #ifdef _SSH
  15. #define crc32 SSH_crc32
  16. #endif /* _SSH */
  17.  
  18. /****************************************************************************/
  19.  
  20. unsigned long crc32(const void *buf, size_t len);
  21.  
  22. /****************************************************************************/
  23.  
  24. #endif /* _CRC_H */
  25.